Modify - определение. Что такое Modify
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое Modify - определение

CLASS OF COMPUTER OPERATIONS
RMW; Read modify write; Read-modify-write
Найдено результатов: 206
modify      
(modifies, modifying, modified)
1.
If you modify something, you change it slightly, usually in order to improve it.
The club members did agree to modify their recruitment policy...
The plane was a modified version of the C-130.
VERB: V n, V-ed
modification (modifications)
Relatively minor modifications were required.
N-VAR
2.
A word or group of words that modifies another word describes or classifies something, or restricts the meaning of the word. (TECHNICAL)
It is a rule of English that adjectives generally precede the noun they modify: we say 'a good cry', not 'a cry good'.
VERB: V n
Modify      
·vt To limit or reduce in extent or degree; to Moderate; to Qualify; to Lower.
II. Modify ·vt To change somewhat the form or qualities of; to alter somewhat; as, to modify a contrivance adapted to some mechanical purpose; to modify the terms of a contract.
modify      
v. a.
1.
Shape, alter, change, vary, give a new form to.
2.
Moderate, qualify, soften, lower.
modify      
¦ verb (modifies, modifying, modified)
1. make partial changes to.
Biology transform (a structure) during development or evolution.
Phonetics pronounce (a speech sound) differently from the norm.
2. Grammar qualify the sense of (a noun).
Derivatives
modifiable adjective
modificatory adjective
Origin
ME: from OFr. modifier, from L. modificare, from modus (see mode).
Read–modify–write         
In computer science, read–modify–write is a class of atomic operations (such as test-and-set, fetch-and-add, and compare-and-swap) that both read a memory location and write a new value into it simultaneously, either with a completely new value or some function of the previous value. These operations prevent race conditions in multi-threaded applications.
Hold-And-Modify         
  • 300x300px
  • An example of the Commodore Amiga's Hold-And-Modify Mode 6 with 12-bit color depth, 16 palette colors, and 5 bitplanes (HAM5). Because only the blue component can be modified without a SET command, horizontal fringing artifacts become apparent and the reproduction quality of the image is poor.
  • 300x300px
  • Amiga HAM 4096 color image
  • Original full color image
DISPLAY MODE USED IN COMMODORE AMIGA COMPUTERS
Hold And Modify; Hold-and-Modify; Amiga Hold-and-Modify; HAM6; HAM8; Amiga Hold-And-Modify; HAM mode
Hold-And-Modify, usually abbreviated as HAM, is a display mode of the Commodore Amiga computer. It uses a highly unusual technique to express the color of pixels, allowing many more colors to appear on screen than would otherwise be possible.
Modify Watches         
Modify Watches is an American retailer of customizable modular watches. Founded in 2010, Modify Watches sells its own designs in addition to sport licensed watches including MLB, NBA, MLS and NHL.
modification         
n. a change in an existing court order or judgment made necessary by a change in circumstances since the order or judgment was made or to cure an error. A motion (petition) to the court for modification is common after divorce judgments because the courts "retain jurisdiction" over matters concerning the children which may need changes such as terms of child support and custody.
Modifiability      
·noun Capability of being modified; state or quality of being modifiable.
modification         
¦ noun the action of modifying.
?a change made.

Википедия

Read–modify–write

In computer science, read–modify–write is a class of atomic operations (such as test-and-set, fetch-and-add, and compare-and-swap) that both read a memory location and write a new value into it simultaneously, either with a completely new value or some function of the previous value. These operations prevent race conditions in multi-threaded applications. Typically they are used to implement mutexes or semaphores. These atomic operations are also heavily used in non-blocking synchronization.

Maurice Herlihy (1991) ranks atomic operations by their consensus numbers, as follows:

  • : memory-to-memory move and swap, augmented queue, compare-and-swap, fetch-and-cons, sticky byte, load-link/store-conditional (LL/SC)
  • 2n − 2: n-register assignment
  • 2: test-and-set, swap, fetch-and-add, queue, stack
  • 1: atomic read and atomic write

It is impossible to implement an operation that requires a given consensus number with only operations with a lower consensus number, no matter how many of such operations one uses. Read–modify–write instructions often produce unexpected results when used on I/O devices, as a write operation may not affect the same internal register that would be accessed in a read operation.

This term is also associated with RAID levels that perform actual write operations as atomic read–modify–write sequences. Such RAID levels include RAID 4, RAID 5 and RAID 6.